DescribeNodeRequest

data class DescribeNodeRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?, depth: Int?, pierce: Boolean?)

Represents request frame that can be used with DOM#describeNode operation call.

Describes node given its id, does not require domain to be enabled. Does not start tracking any objects, can be used for automation.

See also

Constructors

DescribeNodeRequest
Link copied to clipboard
fun DescribeNodeRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null, depth: Int? = null, pierce: Boolean? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Identifier of the backend node.
depth
Link copied to clipboard
val depth: Int? = null
The maximum depth at which children should be retrieved, defaults to 1.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Identifier of the node.
objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
JavaScript object id of the node wrapper.
pierce
Link copied to clipboard
val pierce: Boolean? = null
Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false).

Sources

jvm source
Link copied to clipboard